html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #592d04;
}

a, button {
 color: #a18167;
 text-decoration: none;
 font: Roboto, Arial;
}

a:hover, button:hover {
    color: #ffe4be;
    text-decoration: underline;
    transform: scale(1.2);
    transition: 250ms;
}

.header {
    background-color: #592d04;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    position: fixed;
    display: flex;
    justify-content: flex-end;
    z-index: 100;
}

.header-text-home,
.header-text-architecture,
.header-text-interior-design,
.header-text-contact {  
    
    padding-left: 10px;
    padding-right: 10px;
    border: none;
    background-color: #592d04;
    color: #ffe4be; 
    
    font: Roboto, Arial;
    font-size: 0.75rem;
}

.socials-links {
    position: absolute;
    flex-wrap: nowrap;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    justify-content: center;
    align-items: center;

    top: 44vw;
    gap: 3vw;
    font-size: clamp(6px, 1.2vw, 12px);
}

.video-interior-design-01, .video-interior-design-02 {
    position: absolute;
    width: 96%;
    display: block;

    left: 50%;
    transform: translateX(-50%);
    
    border: 1px solid #a18167;
}

.video-interior-design-01 {
    top: 106vw;
    transform: translateX(-50%) scaleY(0.97);
}

.video-interior-design-02 {
    top: 266.2vw;
    transform: translateX(-50%) scaleY(0.975);
}

.image-architecture {
    padding-top: 30px;
}

.next-page {
 position: absolute;
 right: 0;
}